跳到主要内容

Color3的类对象

描述:

  用于创建Color3对象的类。

__call

类型: 元方法。

描述:

  创建所有通道设置为0的颜色。

签名:

metamethod __call: function(self: Color3Class): Color3

返回值:

返回类型描述
Color3新的Color3对象。

__call

类型: 元方法。

描述:

  从RGB整数值创建新的Color3对象。

签名:

metamethod __call: function(self: Color3Class, rgb: integer): Color3

参数:

参数名类型描述
rgbinteger从中创建颜色的RGB整数值。例如:0xffffff(白色),0xff0000(红色)。

返回值:

返回类型描述
Color3新的Color3对象。

__call

类型: 元方法。

描述:

  从RGB颜色通道值创建新的Color3对象。

签名:

metamethod __call: function(self: Color3Class, r: integer, g: integer, b: integer): Color3

参数:

参数名类型描述
rinteger红色通道值(0-255)。
ginteger绿色通道值(0-255)。
binteger蓝色通道值(0-255)。

返回值:

返回类型描述
Color3新的Color3对象。